home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / exampleCode / i18n / Makefile < prev    next >
Encoding:
Makefile  |  1994-08-02  |  584 b   |  29 lines

  1. #!/usr/sbin/pmake -v
  2.  
  3. include $(ROOT)/usr/include/make/commondefs
  4.  
  5. # alternate include directory
  6. LCINCS = 
  7. # debugging option
  8. LCOPTS = -g
  9. #OPTIMIZER= -O2
  10. LLDLIBS=$(ROOT)/usr/lib/libw.a $(ROOT)/usr/lib/libgen.a
  11.  
  12. # override the prototypes macro in commondefs:  if you want
  13. # prototyping turned on, comment out the next line.
  14. #PROTOTYPES=
  15.  
  16. CFILES = xpg3_wchar.c mnls_wchar.c
  17.  
  18. TARGETS = xpg3_wchar mnls_wchar
  19.  
  20. default all:    $(TARGETS)
  21.  
  22. include $(COMMONRULES)
  23.  
  24. xpg3_wchar:    xpg3_wchar.o
  25.     $(CCF) xpg3_wchar.o $(LDFLAGS) -o $@ 
  26.  
  27. mnls_wchar:    mnls_wchar.o
  28.     $(CCF) mnls_wchar.o $(LDFLAGS) -o $@ 
  29.